home *** CD-ROM | disk | FTP | other *** search
- if(leafeOneFrameout_flag != 1)
- {
- set("_root.clock.clockInlay.sec2",_root.clock.clockInlay.sec2 - 1);
- if(_root.clock.clockInlay.sec2 < 0)
- {
- set("_root.clock.clockInlay.sec1",_root.clock.clockInlay.sec1 - 1);
- _root.clock.clockInlay.sec2 = "9";
- }
- if(_root.clock.clockInlay.sec1 < 0 && _root.clock.clockInlay.min > 0)
- {
- set(_root.clock.clockInlay.min,_root.clock.clockInlay.min - 1);
- _root.clock.clockInlay.sec1 = "5";
- _root.clock.clockInlay.sec2 = "9";
- }
- gotoAndPlay(33);
- leafeOneFrameout_flag = 1;
- }
- else
- {
- secCount++;
- if(secCount >= 26)
- {
- leafeOneFrameout_flag = 0;
- secCount = 0;
- }
- if(_root.clock.clockInlay.min == 0 && _root.clock.clockInlay.sec1 == 0 && _root.clock.clockInlay.sec2 == 0)
- {
- play();
- }
- else
- {
- gotoAndPlay(33);
- }
- }
-